home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / gemfsc18.lzh / AESSRC18.LZH / AESFUNCS / FRMQCHOI.C < prev    next >
Text File  |  1992-03-27  |  447b  |  22 lines

  1. /**************************************************************************
  2.  * FRMQCHOI.C - frm_qchoice() function.
  3.  *************************************************************************/
  4.  
  5. #include <stdarg.h>
  6. #include "gemfast.h"
  7.  
  8. int frm_qchoice(buttons, fmt)
  9.     char    *buttons;
  10.     char    *fmt;
  11. {
  12.     va_list args;
  13.     int     rv;
  14.  
  15.     va_start(args, fmt);
  16.     rv = frm_vprintf(FRM_NORMAL, buttons, fmt, args);
  17.     va_end(args);
  18.  
  19.     return rv;
  20. }
  21.  
  22. ə